home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / vapdos / command.txt next >
Text File  |  1996-07-10  |  10KB  |  331 lines

  1. VAPDOS V1.0  (C) 1990 Artefact, The Netherlands
  2.  
  3.  
  4. NAME
  5.         COMMAND.VAP
  6.  
  7.  
  8. DESCRIPTION
  9.  
  10.         VAPDOS consists of a simple command interpreter to be loaded as a VAP 
  11.         next to Netware V2.1x. It allows you to use simple DOS-like commands 
  12.         from the console to look around on the File Server, type file 
  13.         contents, display the USERLIST, etc. 
  14.  
  15.  
  16.         INSTALLATION OF VAP-DOS.
  17.  
  18.         To install VAP-DOS copy COMMAND.VAP to the SYS:SYSTEM directory of the 
  19.         File Server. Create a configuration file for the File Server, called 
  20.         SERVER.CFG. 
  21.  
  22.         Place the following line in the SERVER.CFG file:
  23.  
  24.         VAP WAIT xxx
  25.  
  26.         This command will give you the ability to allow your server to boot 
  27.         and automatically load any VAPs in the SYS:SYSTEM directory. 
  28.         The "xxx" in VAP WAIT indicates the number of seconds that the server 
  29.         will wait before automatically loading VAPs. If no number is given, 
  30.         i.e. "VAP WAIT", then the minimum wait time of 10 seconds will be 
  31.         used. The range of time (in seconds) is 10 to 360. If you press any 
  32.         key while the server is "counting down" the VAP WAIT time it will 
  33.         abort the loading of all VAPs.  Otherwise, VAPs will be loaded and the 
  34.         server will continue its booting. 
  35.  
  36.  
  37.         BOOTING THE FILE SERVER.
  38.  
  39.         After placing both files in the SYS:SYSTEM directory reboot the file 
  40.         server. After the specified VAP WAIT time the VAP's will be loaded. 
  41.  
  42.         Now the COMMAND VAP is ready for use. On the File Server console type 
  43.         "COMMAND". The COMMAND VAP will run its command interpreter. 
  44.  
  45.         EXAMPLE:
  46.  
  47.         :COMMAND
  48.  
  49.         Artefact VAP-DOS  Version 1.00
  50.                 (C)Copyright Artefact, Delft, The Netherlands 1981-1989
  51.  
  52.         A:\LOGIN>
  53.  
  54.  
  55. Artefact's VAP-DOS interprets the following commands:
  56.  
  57.         cd         Change the current directory
  58.         cls        Clear the screen
  59.         debug      Look around in the server memory
  60.         dir        Display a directory
  61.         exit       Leave VAP-DOS
  62.         help       List of VAP-DOS commands
  63.         login      Login to the file server
  64.         logout     Logout from to file server
  65.         type       Display a file (with pause at screenful)
  66.         userlist   Display all users logged in on this server
  67.         vap        Display VAPS
  68.         vol        Display name of disk
  69.  
  70.  
  71. CD
  72.  
  73.         to change the directory to the specified directory. With CD it is 
  74.         possible to change the volume as well. Only one drive is available in 
  75.         VAP-DOS: drive A:. 
  76.  
  77.         example:
  78.  
  79.         A:\LOGIN>CD \
  80.  
  81.         A:>CD VOL1:FILES
  82.  
  83.         A:\FILES>
  84.  
  85.  
  86. CLS
  87.  
  88.         will clear the console screen.
  89.  
  90.         example:
  91.  
  92.         A:\LOGIN>CLS
  93.  
  94.  
  95. DEBUG
  96.  
  97.         This command starts a very simple debugger with 2 possible commands: 
  98.         
  99.         D xxxx:xxxx Display memory from address xxxx:xxxx. Some addresses
  100.                     can not be accessed with DEBUG, if you try one of
  101.                     these addresses one of 2 possible error-messages will
  102.                     appear:
  103.                          "No read access up selector xxxx"
  104.                          "No more access"   if at the end of accessible segment.
  105.                     Two important segments are :
  106.                     18:0  GDI   General Description Table
  107.                     10:0  IDT   Interrupt Description Table
  108.  
  109.         Q          Quit the debugger
  110.  
  111.         example:
  112.  
  113.         A:\LOGIN>DEBUG
  114.         -D 0600:0                                                              
  115.                 
  116. 0600:0000 4E 57 50 72 6F 63 0E 02 F8 00 08 22 F8 00 79 1E  NWProc....."..y.  
  117. 0600:0010 F8 00 87 01 E8 00 87 0B F0 02 BC 0B F0 02 F8 02  ................  
  118. 0600:0020 00 00 43 6F 6D 6D 61 6E 64 20 28 43 29 20 31 39  ..Command (C) 19  
  119. 0600:0030 38 39 20 41 72 74 65 66 61 63 74 2C 20 44 65 6C  89 Artefact, Del  
  120. 0600:0040 66 74 2C 20 54 68 65 20 4E 65 74 68 65 72 6C 61  ft, The Netherla  
  121. 0600:0050 6E 64 73 00 00 00 00 00 00 00 00 00 00 00 00 00  nds.............  
  122. 0600:0060 00 00 01 00 43 4F 4D 4D 41 4E 44 00 00 00 00 00  ....COMMAND.....  
  123. 0600:0070 00 00 00 00 43 6F 6D 6D 61 6E 64 20 2D 20 73 69  ....Command - si  
  124. 0600:0080 6D 75 6C 61 74 65 20 44 4F 53 20 6F 6E 20 73 65  mulate DOS on se  
  125. 0600:0090 72 76 65 72 20 20 28 43 29 20 31 39 38 39 20 41  rver  (C) 1989 A  
  126. 0600:00A0 72 74 65 66 61 63 74 2C 20 44 65 6C 66 74 2C 20  rtefact, Delft,   
  127. 0600:00B0 54 68 65 20 4E 65 74 68 65 72 6C 61 6E 64 73 00  The Netherlands.  
  128. 0600:00C0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................  
  129. 0600:00D0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
  130. 0600:00E0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
  131. 0600:00F0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
  132.  
  133.         -Q
  134.  
  135.         A:\LOGIN>
  136.  
  137.  
  138. DIR
  139.  
  140.         to display all files and subdirectories in the current directory.
  141.  
  142.         example:
  143.  
  144.         A:\LOGIN>DIR
  145.  
  146.          Volume in drive A is SYS        
  147.          Directory of  A:\LOGIN
  148.  
  149.         SLIST    EXE    12423   9-14-87   9:24a
  150.         LOGIN    EXE    58083   8-15-88   2:58p
  151.                 2 File(s)  0  bytes free
  152.  
  153.  
  154. EXIT
  155.  
  156.         to stop the command interpreter and to return to the console screen. 
  157.         A connection with the File Server will be terminated
  158.         if you answer YES to the question, "do you wish to logout ?"
  159.  
  160.         example:
  161.  
  162.         A:\LOGIN>EXIT
  163.  
  164.         :
  165.  
  166.  
  167. HELP
  168.  
  169.         to display all commands that can be used in VAP-DOS.
  170.  
  171.         example:
  172.  
  173.         A:\LOGIN>HELP
  174.  
  175.         Cd         Change the current directory
  176.         Cls        Clear the screen
  177.         Debug      Look around in the server memory
  178.         Dir        Display a directory
  179.         Exit       Leave VAP-DOS
  180.         Help       List of VAP-DOS commands
  181.         Login      Login to the file server
  182.         Logout     Logout from to file server
  183.         Type       Display a file (with pause at screenful)
  184.         Userlist   Display all users logged in on this server
  185.         Vap        Display VAPS
  186.         Vol        Display name of disk
  187.  
  188.         A:\LOGIN>
  189.  
  190.  
  191. LOGIN
  192.  
  193.         to execute a login on the File Server. The password is echoed 
  194.         on the screen.
  195.  
  196.         example:
  197.  
  198.         A:\LOGIN>LOGIN
  199.  
  200.         Enter user name : supervisor
  201.         Enter password : test
  202.  
  203.         A:\LOGIN>
  204.  
  205.  
  206. LOGOUT
  207.  
  208.         to execute the logout function.
  209.  
  210.         example:
  211.  
  212.         A:\FILES>LOGOUT
  213.  
  214.         A:\LOGIN>
  215.  
  216.  
  217. TYPE
  218.  
  219.         to display a file in successive screenfulls
  220.  
  221.         example:
  222.  
  223.         A:\LOGIN> TYPE FILENAME.EXT
  224.  
  225.         This is filename.ext.
  226.  
  227.         A:\LOGIN>
  228.  
  229.  
  230. USERLIST
  231.  
  232.         to display a list of all users connected to this File Server.
  233.  
  234.         example:
  235.  
  236.         A:\LOGIN>USERLIST
  237.  
  238.         User Information for Server ARTEFACT
  239.  
  240. Connection  User Name        Network    Node Address   Login Time
  241. ----------  --------------   --------   ------------   -------------------
  242.      1      SUPERVISOR      [      01] [          35]   2-16-1990 11:00 am
  243.      4      DICK            [      01] [          64]   2-19-1990 10:59 am  
  244.      5      EDWIN           [      01] [          39]   2-19-1990 10:01 am  
  245.      7      PATRICK         [      01] [          37]   2-19-1990 12:12 pm  
  246.      8      JOOST           [      01] [          68]   2-19-1990 10:10 am  
  247.      9      BAS             [      01] [          80]   2-19-1990  9:49 am  
  248.     10    * GUEST           [      01] [          32]   2-19-1990 12:47 pm  
  249.     11      WILLEM          [      01] [          36]   2-19-1990 10:41 am  
  250.     16      HERMINE         [      01] [          04]   2-19-1990  9:31 am  
  251.     17      SOPHIE          [      01] [          03]   2-19-1990 10:02 am  
  252.     18      RAP_SERVER      [      01] [          32]   2-19-1990 12:44 pm  
  253.  
  254.         A:\LOGIN>
  255.  
  256.  
  257. VAP
  258.  
  259.         to display information on all VAPs loaded. It also displays the VAPs' 
  260.         Header addresses. With the DEBUG command a VAP can be displayed from 
  261.         its Header address. 
  262.  
  263.         example:
  264.  
  265.         A:\LOGIN>VAP
  266.  
  267.         VAP  Header  Name
  268.          0   0600    Command (C) Artefact, Delft, The Netherlands
  269.              Keywords: COMMAND
  270.  
  271.         A:\LOGIN>
  272.  
  273.  
  274. VOL
  275.  
  276.         to display the volume name of the disk you are using.
  277.  
  278.         example:
  279.  
  280.         A:\LOGIN>VOL
  281.  
  282.          Volume in drive A is SYS
  283.  
  284.         A:\LOGIN>
  285.  
  286. Artefact's other products in a nutshell: 
  287.         
  288.         LAN (Novell) products: (see also SHOW.ZIP)
  289.  
  290.         NetMonitor   - to communicate with, observe and use stations
  291.         MultiMon     - to observe and use one or more stations 
  292.         NetGuard     - protect stations and local drives 
  293.         NetBatch     - distributed processing of queued jobs 
  294.         NetUtilities - management tool set
  295.         NetCure      - ETHERNET monitor/analyser with very flexible 
  296.                        filtering (not specifically for Novell)
  297.         
  298.         GROUPWARE based on the RAP (Remote APplication) concept:
  299.         The application runs as a NLM or VAP next to Novell or
  300.         on a dedicated station; at anytime you can reach the application
  301.         through a small multitasking window shell.
  302.  
  303.         NETTI        - NETwork Telephone Information system 
  304.         AGNES        - AGenda NEtwork System (appointments/scheduling)
  305.  
  306.         
  307.         MEMORY products: (see also MEMORY.ZIP)
  308.         to extend conventional memory in the 640Kb-1Mb area
  309.  
  310.         NeatPlus     - for AT/386s with NEAT (tm) Chip Set or compatibles
  311.         MemPlus      - for PCs with RAM available between 640Kb-1Mb (Philips XT)
  312.         
  313.         RamRom card    - to add RAM in the 640Kb-1Mb area in any PC/XT/AT
  314.         RamPlus/2 card - to add RAM in the 640Kb-1Mb area in any MCA PS/2
  315.  
  316.         SpacePlus    - to load 1 .COM type program in 64Kb of extended memory
  317.         
  318.  
  319.         For any remarks, suggestions and additional information on 
  320.         products from Artefact, please contact:   
  321.  
  322.          ARTEFACT
  323.          Nassaulaan 2A, 
  324.          2628 GH Delft, 
  325.          The Netherlands.
  326.  
  327.          Fax      : +31 15 618 202
  328.          Telephone: +31 15 617 532
  329.          BBS      : +31 15 620 790  (2400, N, 8, 1)            
  330.  
  331.